3450573e5abec06e227b37e08116e802033c4d11,src/net/java/sip/communicator/impl/protocol/sip/ProtocolProviderServiceSipImpl.java,ProtocolProviderServiceSipImpl,initialize,#String#SipAccountID#,353

Before Change


                    opSetBasicIM);

                // init typing notifications
                addSupportedOperationSet(
                    OperationSetTypingNotifications.class,
                    new OperationSetTypingNotificationsSipImpl(
                            this,
                            opSetBasicIM));

                OperationSetServerStoredAccountInfoSipImpl opSetSSAccountInfo =
                    new OperationSetServerStoredAccountInfoSipImpl(this);

After Change


                    = SipActivator.getConfigurationService()
                        .getBoolean(IS_MESSAGING_DISABLED, false);

                if (!isMessagingDisabled)
                {
                    // init instant messaging
                    OperationSetBasicInstantMessagingSipImpl opSetBasicIM =
                        new OperationSetBasicInstantMessagingSipImpl(this);

                    addSupportedOperationSet(
                        OperationSetBasicInstantMessaging.class,
                        opSetBasicIM);

                    // init typing notifications
                    addSupportedOperationSet(
                        OperationSetTypingNotifications.class,
                        new OperationSetTypingNotificationsSipImpl(
                            this,
                            opSetBasicIM));
                }

                OperationSetServerStoredAccountInfoSipImpl opSetSSAccountInfo =